home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
exitwi
/
aboutbox.frm
next >
Wrap
Text File
|
1995-12-05
|
5KB
|
155 lines
VERSION 2.00
Begin Form AboutBox
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Double
Caption = "About ExitWin"
ClientHeight = 2445
ClientLeft = 2385
ClientTop = 4185
ClientWidth = 5610
ClipControls = 0 'False
FontBold = -1 'True
FontItalic = 0 'False
FontName = "System"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 2850
Icon = 0
Left = 2325
LinkMode = 1 'Source
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2445
ScaleWidth = 5610
Top = 3840
Width = 5730
Begin PictureBox Pic_ApplicationIcon
AutoSize = -1 'True
BackColor = &H00C0C0C0&
BorderStyle = 0 'None
Height = 480
Left = 255
Picture = ABOUTBOX.FRX:0000
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 2
Top = 480
Width = 480
End
Begin CommandButton Cmd_OK
Caption = "OK"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "System"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 360
Left = 2160
TabIndex = 3
Top = 1920
Width = 1035
End
Begin Label Label5
BackColor = &H00C0C0C0&
Caption = "Modified"
ForeColor = &H000000FF&
Height = 255
Left = 1320
TabIndex = 8
Top = 840
Width = 855
End
Begin Label Label4
BackColor = &H00C0C0C0&
Caption = "B = Reboot Computor"
Height = 255
Left = 2760
TabIndex = 7
Top = 960
Width = 2655
End
Begin Label Label3
BackColor = &H00C0C0C0&
Caption = "R = Restart Windows"
Height = 375
Left = 2760
TabIndex = 6
Top = 720
Width = 2655
End
Begin Label Label2
BackColor = &H00C0C0C0&
Caption = "X = End Windows Session"
Height = 255
Left = 2760
TabIndex = 5
Top = 480
Width = 2655
End
Begin Label Label1
BackColor = &H00C0C0C0&
Caption = "Command Line Switches"
ForeColor = &H00FF0000&
Height = 255
Left = 2760
TabIndex = 4
Top = 240
Width = 2535
End
Begin Line lin_HorizontalLine1
BorderWidth = 2
X1 = 120
X2 = 4995
Y1 = 1320
Y2 = 1320
End
Begin Label Lbl_IconWorks
BackColor = &H00C0C0C0&
Caption = "ExitWin"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 450
Left = 1080
TabIndex = 0
Top = 360
Width = 1455
End
Begin Label Lbl_Version
BackColor = &H00C0C0C0&
Caption = "Version 1.00 Freeware"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 240
Left = 1200
TabIndex = 1
Top = 1440
Width = 3990
End
End
DefInt A-Z
Declare Function GetFreeSpace Lib "Kernel" (ByVal wFlags) As Long
Declare Function GetWinFlags Lib "Kernel" () As Long
Const WF_STANDARD = &H10
Const WF_ENHANCED = &H20
Const WF_80x87 = &H400
Sub Cmd_OK_Click ()
Unload AboutBox
End Sub
Sub Form_Load ()
Show
End Sub